| * | NN 2 IE 3 ECMA 1 |
|
The multiplication operator multiplies the number to the left of the operator by the number to the right. Both operands must be numbers. An expression with this operator evaluates to a number. |
|
| Example | |
var myProduct = number1 * number2; |
|